home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xmb_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  79 lines

  1. #
  2. # (C) Renaud Deraison
  3. #
  4.  
  5. if (description)
  6. {
  7.  script_id(11527);
  8.  script_bugtraq_id(4167, 4944, 8013);
  9.  script_cve_id("CAN-2002-0316", "CAN-2003-0375");
  10.  script_version ("$Revision: 1.11 $");
  11.  
  12.  script_name(english:"XMB Cross Site Scripting");
  13.  desc["english"] = "
  14. The remote host is using XMB Forum.
  15.  
  16. This set of CGI is vulnerable to a cross-site-scripting issue
  17. that may allow attackers to steal the cookies of your
  18. users.
  19.  
  20. Solution: Upgrade to a newer version.
  21. Risk factor : Medium";
  22.  
  23.  script_description(english:desc["english"]);
  24.  script_summary(english:"Determine if XMB forums is vulnerable to xss attack");
  25.  script_category(ACT_GATHER_INFO);
  26.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  27.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  28.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  29.  script_require_ports("Services/www", 80);
  30.  exit(0);
  31. }
  32.  
  33. include("http_func.inc");
  34. include("http_keepalive.inc");
  35.  
  36. port = get_http_port(default:80);
  37.  
  38. if(!get_port_state(port))exit(0);
  39. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  40. if(!can_host_php(port:port))exit(0);
  41.  
  42. foreach d (cgi_dirs())
  43. {
  44.  url = string(d, '/forumdisplay.php?fid=21"><script>x</script>');
  45.  req = http_get(item:url, port:port);
  46.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  47.  if( buf == NULL ) exit(0);
  48.  
  49.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:buf) &&
  50.     "<script>x</script>" >< buf)
  51.    {
  52.     security_warning(port);
  53.     exit(0);
  54.    }
  55.  
  56.  url = string(d, '/buddy.php?action=<script>x</script>');
  57.  req = http_get(item:url, port:port);
  58.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  59.  if( buf == NULL ) exit(0);
  60.  
  61.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:buf) &&
  62.     "<script>x</script>" >< buf)
  63.    {
  64.     security_warning(port);
  65.     exit(0);
  66.    }
  67.  url = string(d, '/admin.php?action=viewpro&member=admin<script>x</script>');
  68.  req = http_get(item:url, port:port);
  69.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  70.  if( buf == NULL ) exit(0);
  71.  
  72.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:buf) &&
  73.     "<script>x</script>" >< buf)
  74.    {
  75.     security_warning(port);
  76.     exit(0);
  77.    }
  78. }
  79.